.site-subtitle {
  color: rgb(0, 132, 255);
  transition: ease-in-out color .15s;
}

body {
  background-color: rgb(98, 225, 233);
}

.messages {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.messages {
  position: fixed;
  top: 60px;
  right: 20px;
  z-index: 1000;
}

.message {
  padding: 15px 25px;
  margin-bottom: 10px;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  animation: slideIn 0.3s ease-in;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 300px;
  transition: opacity 0.5s ease;
}

.message-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
  margin-right: 10px;
}

.countdown {
  margin-left: 10px;
  font-size: 0.8em;
  opacity: 0.8;
}

.success {
  background-color: #4CAF50;
  color: white;
}

.error {
  background-color: #f44336;
  color: white;
}

.warning {
  background-color: #ff9800;
  color: white;
}

.info {
  background-color: #2196F3;
  color: white;
}

.close-button {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  padding: 0 5px;
}

@keyframes slideIn {
  from {
      transform: translateX(100%);
      opacity: 0;
  }
  to {
      transform: translateX(0);
      opacity: 1;
  }
}

.dimming {
  opacity: 0;
}
